home *** CD-ROM | disk | FTP | other *** search
/ No Fragments Archive 12: Textmags & Docs / nf_archive_12.iso / MAGS / SOURCES / ATARI_SRC.ZIP / atari source / FALCON / ACC / OUTLINE.ACC / VDI.S < prev    next >
Encoding:
Text File  |  2001-02-10  |  391 b   |  33 lines

  1.         .globl vdi
  2.  
  3.         .globl vpb
  4.         
  5.         .globl contrl
  6.         .globl intin
  7.         .globl ptsin
  8.         .globl intout
  9.         .globl ptsout
  10.         .globl stuffptr
  11.             
  12.         
  13.     .text
  14.         
  15. vdi:    move.l    #vpb,d1
  16.     moveq.l    #$73,d0
  17.     trap    #$2
  18.     rts
  19.     
  20.         
  21. ; used to move intout[0] and intout[1] into a long.
  22. stuffptr:
  23.     move.l    (a0),(a1)
  24.     rts
  25.     
  26.     
  27.     .data
  28.     
  29. vpb:    .dc.l    contrl, intin, ptsin, intout, ptsout    
  30.  
  31.     .end        
  32.  
  33.